toggle menu
JxBrowser
8.2.0
jvm
switch theme
search in API
JxBrowser
/
com.teamdev.jxbrowser.dom.event
/
[jvm]CustomEventParams
Custom
Event
Params
public
interface
CustomEventParams
implements
EventParams
The parameters of the custom DOM event.
Since
7.21
Members
Types
Builder
Link copied to clipboard
public
final
class
Builder
A builder of
CustomEventParams
.
Functions
detail
Link copied to clipboard
public
T
detail
<
T
>
(
)
Returns the payload of the custom event.
is
Bubbles
Link copied to clipboard
public
boolean
isBubbles
(
)
Returns
true
if the event bubbles up through the DOM.
is
Cancelable
Link copied to clipboard
public
boolean
isCancelable
(
)
Returns
true
if the event can be canceled, and therefore prevented as if the event never happened.
is
Trusted
Link copied to clipboard
public
boolean
isTrusted
(
)
Returns
true
if the event is trusted, and therefore was generated by a user action.
new
Builder
Link copied to clipboard
public
static
EventParams.Builder
newBuilder
(
)
Creates a new
EventParams
builder.
public
static
CustomEventParams.Builder
newBuilder
(
Document
document
)
Creates a new
CustomEventParams
builder.